From 40aad446e3e1ddc8d20d36717690f45051864dfb Mon Sep 17 00:00:00 2001 From: tsteven4 <13596209+tsteven4@users.noreply.github.com> Date: Wed, 13 Nov 2024 07:23:27 -0700 Subject: [PATCH] fix mysterious lost message (#1370) --- gpx.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpx.cc b/gpx.cc index c1165dbcc..58662d11b 100644 --- a/gpx.cc +++ b/gpx.cc @@ -1000,7 +1000,7 @@ GpxFormat::wr_init(const QString& fname) // normalization makes them null. if (gpx_write_version.isNull() || (gpx_write_version < gpx_1_0)) { gbFatal(FatalMsg() << "gpx version number" - << gpx_write_version << "not valid."); + << gpx_write_version.toString() << "not valid."); } writer->setAutoFormatting(true); -- 2.30.2